home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 15
/
Aminet 15 - Nov 1996.iso
/
Aminet
/
dev
/
basic
/
ace24dist.lha
/
ace24.lha
/
prgs
/
ExternFunc
/
func.b
next >
Wrap
Text File
|
1996-09-10
|
299b
|
19 lines
{*
** A test of external function use.
** sub.c (compiled and assembled to produce sub.o)
** is used in conjunction with this:
**
** bas -O func sub.o
*}
deflng x,y,z
declare function subtract(x&,y&,z&) external
input "enter x: ",x
input "enter y: ",y
z=0
subtract(x,y,@z)
print x;"-";y;"=";z